/*** Basic styling ***/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
}
body {
    font-family: 'montserrat';
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'montserrat';
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #D98BB0 !important;
}

.navbar-light .navbar-brand img {
    max-height: 70px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 50px;
}

.img-circle{
    border-radius:50%;
    width: 50px;
}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

#navbarCollapse .btn.btn-dark {
    background-color: #1A1618;
    border: none;
}

#navbarCollapse .btn.btn-dark:hover {
    background-color: #D98BB0;
    border: none;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-dark);
        color: var(--bs-dark);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #D98BB0;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Navbar END***/

/*** Landing page ***/
.landing_section {
    background-image: url(../img/Rectangle-gradient.png);
    margin-top: 10%;
    width: 100%;
    height: 300px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
 
.img-shadow img {
    position: absolute;
    margin-top: 2%;
    margin-left: 25px;
}

.detail-box {
    padding: none;
    margin-left: 60px;
}

.detail-box h2 {
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    font-family: 'montserrat';
    font-size: 30px;
}

.detail-box p {
    margin-top: 14px;
    color: white;
    text-align: justify;
    font-size: 20px;
}

.detail-box p em {
    font-weight: 600;
    font-family: 'montserrat';
    font-style: normal;
}

.promo-rectangle{
    color: #D1373F;
    border-radius: 15px 50px 50px 5px;
    background: #fff;
    padding: 0px 0px 0px 0px;
    width: 320px;
}

.promo-rectangle:hover {
    background-color: #DAC2CC;
    color: #1A1618;
}

.promo-rectangle img{
    max-width: 40px;
    align-items: left;
}
/*** Landing page END***/

/*** About page ***/
#about {
    width: 100%;
    -moz-box-align: center;
}
.sub-text {
    margin-top: 15%;
    text-align: center;
}

.sub-text h3 {
    font-weight: bold;
    font-family: 'montserrat';
    color: #D98BB0;
}

.sub-text p {
    font-family: 'montserrat';
    font-size: 16px;
    color: #1A1618;
    margin-top: 30px;
    margin-left: 10%;
    margin-right: 10%;
}

.sub-text p em {
    font-weight: 600;
    font-style: normal;
    color: #1A1618;
}

.sub-text p em:hover {
    color: #D98BB0;
}

/*** Services ***/
.services {
    margin-top: 5%;
    
}

.services h3 {
    font-weight: bold;
    font-family: 'montserrat';
    color: #D98BB0;
    margin-bottom: 50px;
}

.services h3 em {
    font-weight: bold;
    font-family: 'montserrat';
    color: #DAC2CC;
    font-style: normal;
}

.row {
    align-items: center;
    width: auto;
}

.service-content {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    gap: 60px;
}

.services-contents {
    display: inline-flex;
    max-width: 100%;
    justify-content: center;
    gap: 60px;
}

.single-services H4 {
    font-family: 'montserrat';
    color: #D98BB0;
    font-weight: 600;
    margin-top: 20px;
    align-items: flex-start;
}

.about-move {
   display: inline-block; 
   align-items: center;
}

.single-services img{
    transition: .5s;
}

.single-services img:hover {
    transform: scale(1.1);
}

/*** Service page END***/

/*** Top Paket ***/
.paket-page {
    width: 100%;
    height: 350px;
    background-image: url(../img/Rectangle-gradient.png);
    margin-top: 8%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-start h2 {
    font-weight: bold;
    font-size: 40px;
    font-family: 'montserrat';
    color: #1A1618;
}

.btn-rank {
    background: #fff;
    color: #D98BB0;
    font-weight: bold;
    font-size: 16px;
}

.text-start .btn-see {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: #2e2329;
    font-family: 'montserrat';
    font-weight: 600;
    background: #D98BB0;
    width: 175px;
    height: 40px;
    border-radius: 50px 50px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
}

.text-start .btn-see:hover,
.text-start .btn-see.active{
    background: #FFFFFF;
}

.property-item {
    max-height: auto;
    box-shadow:0 6px 6px hsla(0, 1%, 19%, 0.3);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}

.text-primary {
    background-color:rgba(217, 139, 176, 0.8);
    width: 100%;
}

#nama_paket {
    font-weight: 600;
    font-size: 16px;
    font-family: 'montserrat';
    color: #fff;
    margin-left: 10px;
    margin-top: 8px;
}

#harga {
    font-family: 'montserrat';
    color: #fff;
    font-size: 14px;
    margin-left: 10px;
}

.paket-pane{
    display: inline-flex;
}

.icon-paket {
    color: #fff;
}

.icon-paket:hover,
.icon-paket.active{
    color: #2e2329;
}
/*** Top Page END ***/

/*** Testimoni Page ***/
.testimoni-title {
    max-width: 600px;
}

.testimoni-title h3 {
    font-weight: bold;
    font-family: 'montserrat';
    color: #D98BB0;
}

.testimoni-carousel {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    visibility: visible;
}

.testimoni-carousel .owl-dots{
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimoni-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DAC2CC;
    border-radius: 2px;
    transition: .5s;
}

.testimoni-carousel .owl-dot.active {
    width: 30px;
    background: #D98BB0;
}

.testimoni-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimoni-carousel .owl-item .testimoni-item {
    transition: .5s;
}

.testimoni-carousel .owl-item.center .testimoni-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

.testimoni-item {
    background: #FBE2EC;
}

.rating {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: right;
    padding-bottom: 5px;
}

.checked {
    color: #E38B29;
}
/*** Testimoni Page END ***/

/*** Peta Page ***/
.peta h3{
    font-weight: bold;
    font-family: 'montserrat';
    color: #D98BB0;
    margin-bottom: 50px;
}
/*** Peta Page END***/

/***Footer start***/
.footer-area {
    background: #D98BB0;
  }

.footer-logo img{
    width: 200px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.footer-icons ul{
    position: relative;
    top:2%;
    left:50%;
    transform: translate(-50%, -50%);
    margin:0;
    padding:0;
    display:flex;
}

.footer-icons ul li {
    list-style-type: none;
}

.footer-icons ul li a{
    position: relative;
    width:40px;
    height:40px;
    display:block;
    text-align:center;
    margin:0 10px;
    border-radius: 50%;
    padding: 6px;
    box-sizing: border-box;
    text-decoration:none;
    box-shadow: 0 10px 15px rgba(0,0,0,0.3);
    background: linear-gradient(0deg, #ddd, #fff);
    transition: .5s;
}

.footer-icons ul li a:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    text-decoration:none;
}

.footer-icons ul li a .fab {
    width: 100%;
    height:100%;
    display:block;
    background: linear-gradient(0deg, #fff, #ddd);
    border-radius: 50%;
    line-height: calc(40px - 12px);
    font-size:16px;
    color: #262626;
    transition: .5s;
  }

.footer-icons ul li a:hover .fab {
    color: #D98BB0;
  }

.footer-menu a {
    font-family: 'montserrat';
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    padding-bottom: 8px;
}

.btn-footer {
    background: #fff;
    color: #1A1618;
    font-weight: 400;
    font-size: 16px;
}

.footer-img img{
    width: 150px;
}

.text-bawah {
    text-align: center;
    background-color: #D98BB0;
}

.text-bawah p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #fff;
}

/***Footer END***/